diff options
| author | real-zephex <[email protected]> | 2024-05-14 01:02:42 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-05-14 01:02:42 +0530 |
| commit | 16b4a70b7d75969151c8a7d29f6978666743bd31 (patch) | |
| tree | 8e308ea2b4fad20e9d54c464d91e078683da4196 /src/app/kdrama/[id] | |
| parent | Merge pull request #24 from zephex-alt/master (diff) | |
| download | dramalama-16b4a70b7d75969151c8a7d29f6978666743bd31.tar.xz dramalama-16b4a70b7d75969151c8a7d29f6978666743bd31.zip | |
minor changes to the kdrama page
Diffstat (limited to 'src/app/kdrama/[id]')
| -rw-r--r-- | src/app/kdrama/[id]/buttons.jsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/app/kdrama/[id]/buttons.jsx b/src/app/kdrama/[id]/buttons.jsx index 2018a1c..e31adf1 100644 --- a/src/app/kdrama/[id]/buttons.jsx +++ b/src/app/kdrama/[id]/buttons.jsx @@ -26,6 +26,7 @@ export default function EpisodesButtons({ data: episodeData, id: dramaId }) { {episodeData &&
episodeData.map((item, index) => (
<button
+ title={item.title}
key={index}
onClick={(event) => {
test(item.id, dramaId, item.title);
|